home *** CD-ROM | disk | FTP | other *** search
- class classes.ww_interface.Waiter extends MovieClip
- {
- var status;
- var onEnterFrame;
- var countdown = 2;
- var cdw = 0;
- function Waiter()
- {
- super();
- this._visible = false;
- this.status = "ready_off";
- }
- function show()
- {
- this.status = "progress";
- this._visible = true;
- this.cdw = 0;
- this.onEnterFrame = mx.utils.Delegate.create(this,this.makeBig);
- }
- function hide()
- {
- this._visible = false;
- this.status = "ready_off";
- }
- function makeBig()
- {
- this.cdw = this.cdw + 1;
- if(this.cdw > this.countdown)
- {
- this.status = "ready_on";
- delete this.onEnterFrame;
- }
- }
- }
-